scaffolding-nextjs
Version:
Templates that aid in the development of NextJS applications.
20 lines (17 loc) • 457 B
JavaScript
/**
* @file {{name}}.test.jsx
*
* Jest expect documentation
* @url https://jestjs.io/docs/expect
*
* React Testing Library documentation
* @url https://testing-library.com/docs/
*/
import * as React from 'react'
import { render, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
// Component to test
import {{name}} from './{{name}}.jsx'
test('is truthy', () => {
expect(true).toBeTruthy();
})